home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class EnumMap$Values extends AbstractCollection<V> {
- // $FF: synthetic field
- final EnumMap this$0;
-
- private EnumMap$Values(EnumMap var1) {
- this.this$0 = var1;
- }
-
- public Iterator<V> iterator() {
- return new EnumMap.ValueIterator(this.this$0, (EnumMap.1)null);
- }
-
- public int size() {
- return EnumMap.access$200(this.this$0);
- }
-
- public boolean contains(Object var1) {
- return this.this$0.containsValue(var1);
- }
-
- public boolean remove(Object var1) {
- var1 = EnumMap.access$500(this.this$0, var1);
-
- for(int var2 = 0; var2 < EnumMap.access$600(this.this$0).length; ++var2) {
- if (var1.equals(EnumMap.access$600(this.this$0)[var2])) {
- EnumMap.access$600(this.this$0)[var2] = null;
- EnumMap.access$210(this.this$0);
- return true;
- }
- }
-
- return false;
- }
-
- public void clear() {
- this.this$0.clear();
- }
-
- // $FF: synthetic method
- EnumMap$Values(EnumMap var1, EnumMap.1 var2) {
- this(var1);
- }
- }
-